home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload Trio 2 / Shareware Overload Trio Volume 2 (Chestnut CD-ROM).ISO / dir43 / qsrc_dsk.zip / MODEL / CREATEV.PRG < prev    next >
Text File  |  1991-12-17  |  1KB  |  33 lines

  1. *       ╓─────────────────────────────────────────────────────────╖
  2. *       ║                                                         ║
  3. *       ║ CREATEV.PRG                                             ║
  4. *       ║                                                         ║
  5. *       ╟─────────────────────────────────────────────────────────╢
  6. *       ║ Application Developed in _Using FoxPro 2_               ║
  7. *       ║                                                         ║
  8. *       ║ Lisa C. Slater and Steven E. Arnott                     ║
  9. *       ║                                                         ║
  10. *       ║ Copyright (c) 1991 Que Publishing                       ║
  11. *       ║                                                         ║
  12. *       ╙─────────────────────────────────────────────────────────╜
  13.  
  14.  
  15.  
  16.  
  17. * open dbfs and create a .VUE file for later use
  18. * as described in Chapter 2
  19. CLOSE ALL
  20. SELE 2
  21. USE Budcat ALIAS Budcat ORDER budcatcode
  22. SELE 3
  23. USE Product ALIAS Product ORDER prodcode
  24. SELE 4
  25. USE Dept ALIAS Dept ORDER deptcode
  26. SELE 1
  27. USE Budget ALIAS Budget 
  28. SET RELATION TO deptcode INTO Dept, budcatcode INTO Budcat, prodcode INTO Product
  29. CREATE VIEW Model
  30. RETURN
  31.  
  32.  
  33.